ConnectionCreateNewFolder Method |
Makes sure the folder does exist in the vault and optionally updates its properties
Namespace: ICMeridianAPIAssembly: ICMeridianAPI (in ICMeridianAPI.dll) Version: 4.0.8.0 (4.0.8.0)
Syntaxpublic string CreateNewFolder(
string vaultidentifier,
string folderpath,
Object properties = null,
Object values = null
)
Public Function CreateNewFolder (
vaultidentifier As String,
folderpath As String,
Optional properties As Object = Nothing,
Optional values As Object = Nothing
) As String
public:
String^ CreateNewFolder(
String^ vaultidentifier,
String^ folderpath,
Object^ properties = nullptr,
Object^ values = nullptr
)
member CreateNewFolder :
vaultidentifier : string *
folderpath : string *
?properties : Object *
?values : Object
(* Defaults:
let _properties = defaultArg properties null
let _values = defaultArg values null
*)
-> string
Parameters
- vaultidentifier
- Type: SystemString
The vault in which the new folder should be created. - folderpath
- Type: SystemString
Path for the folder - properties (Optional)
- Type: SystemObject
An array of property names for the folder that need to be initialized with values. - values (Optional)
- Type: SystemObject
An array of values for the properties specified in the properties parameter.
The dimensions of the properties array and values array should be identical.
The values array must be an array of variants.
Return Value
Type:
StringID of the created folder
RemarksIf the folder already exists it is not considered as an error
See Also